home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / LCLINT-D.SPK / lclint / guide / switch.c < prev    next >
Text File  |  1996-08-26  |  257b  |  16 lines

  1. typedef enum {
  2.   YES, NO, DEFINITELY,
  3.   PROBABLY, MAYBE } ynm;
  4.  
  5. void decide (ynm y)
  6. {
  7.   switch (y)
  8.     {
  9.     case PROBABLY:
  10.     case NO: printf ("No!");
  11.     case MAYBE: printf ("Maybe");    
  12.          /*@fallthrough@*/
  13.     case YES: printf ("Yes!");
  14.     }
  15. }
  16.